home *** CD-ROM | disk | FTP | other *** search
/ Macromedia Multimedia Showcase 5.1 / Macromedia - Multimedia Showcase 5.1 (Macromedia) (1996).ISO / pc / media / 58110.dir / 00298_Script_298 < prev    next >
Text File  |  1996-03-27  |  520b  |  27 lines

  1. --
  2. --
  3. -- Movie & code by Jason A. Yeaman
  4. -- Macromedia, creative services department
  5. --
  6.  
  7. --
  8. on init
  9.   repeat with j = 20 to 28
  10.     puppetsprite j, true
  11.   end repeat
  12. end init
  13.  
  14. on melrose
  15.   repeat with i = 30 to 38
  16.     if rollover(i) then
  17.       set the visible of sprite (i - 20) to true
  18.       set the castnum of sprite (i - 10) to (i)
  19.       updatestage
  20.     else 
  21.       set the visible of sprite (i - 20) to false
  22.       set the castnum of sprite (i - 10) to (i - 10)
  23.     end if
  24.   end repeat
  25. end
  26.  
  27.